home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / import1a / form1.frm next >
Text File  |  1999-10-20  |  2KB  |  58 lines

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "X Disabel"
  5.    ClientHeight    =   615
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   1455
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   615
  13.    ScaleWidth      =   1455
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   3  'Windows Default
  16.    Begin VB.CommandButton Command1 
  17.       Caption         =   "E&xit"
  18.       Height          =   615
  19.       Left            =   0
  20.       TabIndex        =   0
  21.       Top             =   0
  22.       Width           =   1455
  23.    End
  24. End
  25. Attribute VB_Name = "Form1"
  26. Attribute VB_GlobalNameSpace = False
  27. Attribute VB_Creatable = False
  28. Attribute VB_PredeclaredId = True
  29. Attribute VB_Exposed = False
  30.  
  31.  
  32. Private Sub Command1_Click()
  33. End
  34. End Sub
  35.  
  36. Private Sub Form_Load()
  37. Dim hSysMenu As Long
  38. Dim nCnt As Long
  39. ' First, show the form
  40. ' Get handle to our form's system menu
  41. ' (Restore, Maximize, Move, close etc.)
  42. hSysMenu = GetSystemMenu(Me.hwnd, False)
  43. If hSysMenu Then
  44. ' Get System menu's menu count
  45. nCnt = GetMenuItemCount(hSysMenu)
  46. If nCnt Then
  47. ' Menu count is based on 0 (0, 1, 2, 3...)
  48. RemoveMenu hSysMenu, nCnt - 1, MF_BYPOSITION Or MF_REMOVE
  49. RemoveMenu hSysMenu, nCnt - 2, MF_BYPOSITION Or MF_REMOVE
  50. ' Remove the seperator
  51. DrawMenuBar Me.hwnd
  52. ' Force caption bar's refresh. Disabling X button
  53. Me.Caption = "Heh"
  54. End If
  55. End If
  56.  
  57. End Sub
  58.